home *** CD-ROM | disk | FTP | other *** search
/ The Games Room / The Games Room.iso / wingames / misc / ebpool_w / fbinst.bat next >
DOS Batch File  |  1980-06-30  |  444b  |  15 lines

  1. IF "%1" == "" GOTO UsageInstall
  2. IF EXIST %1\System\ctl3dv2.dll GOTO DoneInstall
  3. copy ctl3dv2.dll %1\System
  4. IF NOT EXIST %1\System\ctl3dv2.dll GOTO ErrorInstall
  5. :DoneInstall
  6. del ctl3dv2.dll
  7. goto EndInstall
  8. :ErrorInstall
  9. @ECHO Cannot copy CTL3DV2.DLL to %1\System
  10. @ECHO Check the spelling of the directory.
  11. :UsageInstall
  12. @ECHO Please specify the location of your windows directory.
  13. @ECHO For example:  fbinst C:\Windows
  14. :EndInstall
  15.